home *** CD-ROM | disk | FTP | other *** search
/ Aminet 7 / Aminet 7 - August 1995.iso / Aminet / dev / c / MemPools1_2.lha / mempools / TimeProg.c < prev   
C/C++ Source or Header  |  1995-03-26  |  3KB  |  139 lines

  1. /**
  2. ***  MemPools:    malloc() replacement using standard Amiga pool functions.
  3. ***  Copyright    (C)  1994    Jochen Wiedmann
  4. ***
  5. ***  This program is free software; you can redistribute it and/or modify
  6. ***  it under the terms of the GNU General Public License as published by
  7. ***  the Free Software Foundation; either version 2 of the License, or
  8. ***  (at your option) any later version.
  9. ***
  10. ***  This program is distributed in the hope that it will be useful,
  11. ***  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ***  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. ***  GNU General Public License for more details.
  14. ***
  15. ***  You should have received a copy of the GNU General Public License
  16. ***  along with this program; if not, write to the Free Software
  17. ***  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. ***
  19. ***
  20. ***  This is a very simple timing program.
  21. ***
  22. ***
  23. ***  Computer:    Amiga 1200
  24. ***
  25. ***  Compilers: Dice 3.01
  26. ***        SAS/C 6.3
  27. ***        gcc 2.6.1
  28. ***
  29. ***
  30. ***  Author:    Jochen Wiedmann
  31. ***        Am Eisteich 9
  32. ***      72555 Metzingen
  33. ***        Germany
  34. ***
  35. ***        Phone: (0049) 7123 14881
  36. ***        Internet: jochen.wiedmann@uni-tuebingen.de
  37. **/
  38.  
  39.  
  40.  
  41.  
  42. /*
  43.     Include files and compiler specific stuff
  44. */
  45. #include <stdlib.h>
  46. #include <stdio.h>
  47. #include <string.h>
  48. #include <time.h>
  49.  
  50. #ifndef FALSE
  51. #define FALSE 0
  52. #endif
  53. #ifndef TRUE
  54. #define TRUE (!FALSE)
  55. #endif
  56.  
  57. #if defined(__GNUC__)
  58. #define stricmp strcasecmp
  59. #define strncimp strncasecmp
  60. #endif
  61.  
  62.  
  63.  
  64.  
  65.  
  66. void Usage(void)
  67.  
  68. { fprintf(stderr, "Usage: TimeProg ProgToTime [Number]\n\n");
  69.   fprintf(stderr, "ProgToTime:  Program to execute\n");
  70.   fprintf(stderr, "Number:      How much to execute ProgToTime (Default: 1).\n");
  71.   exit(5);
  72. }
  73.  
  74.  
  75.  
  76.  
  77.  
  78. int main(int argc, char *argv[])
  79.  
  80. { int NumTimings = 1;
  81.   int NumTimingsSeen = FALSE;
  82.   char *TimeProg = NULL;
  83.   int i;
  84.   int days, hours, mins, secs, clocks;
  85.   clock_t clk;
  86.  
  87.   for (i = 1;  i < argc;  i++)
  88.   { if (stricmp(argv[i], "?") == 0      ||
  89.     stricmp(argv[i], "-h") == 0     ||
  90.     stricmp(argv[i], "help") == 0   ||
  91.     stricmp(argv[i], "--help") == 0)
  92.     { Usage();
  93.     }
  94.     else if (TimeProg == NULL)
  95.     { TimeProg = argv[i];
  96.     }
  97.     else if (NumTimingsSeen)
  98.     { Usage();
  99.     }
  100.     else
  101.     { if (!(NumTimings = atoi(argv[i])))
  102.       { Usage();
  103.       }
  104.       NumTimingsSeen = TRUE;
  105.     }
  106.   }
  107.  
  108.   clk = clock();
  109.   for (i = 0;  i < NumTimings;  ++i)
  110.   { int result;
  111.  
  112.     if (result = system(TimeProg))
  113.     { fprintf(stderr, "Error while executing %s\n", TimeProg);
  114.       exit(10);
  115.     }
  116.   }
  117.   clk = clock() - clk;
  118.  
  119.   clocks = clk % CLK_TCK;
  120.   clk /= CLK_TCK;
  121.   secs = clk % 60;
  122.   clk /= 60;
  123.   mins = clk % 60;
  124.   clk /= 60;
  125.   hours = clk % 24;
  126.   clk /= 24;
  127.   days = clk;
  128.  
  129.   if (days)
  130.   { printf("%d days, ", days);
  131.   }
  132.   if (days || hours)
  133.   { printf("%d hours, ", hours);
  134.   }
  135.   printf("%d:%d and %d clocks\n", mins, secs, clocks);
  136.  
  137.   exit(0);
  138. }
  139.